Nuke dead code.
authorrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Sun, 18 Jan 2004 00:56:34 +0000 (00:56 +0000)
committerrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Sun, 18 Jan 2004 00:56:34 +0000 (00:56 +0000)
gpsbabel/gpx.c
gpsbabel/util.c

index cc4d573fa23c5f6264448e9e884b3b83c7f118e6..f7425048216272dd7b816afa89a4cdc76645080f 100644 (file)
@@ -1095,11 +1095,6 @@ gpx_route_tlr(const route_head *rte)
        fprintf(ofd, "</rte>\n");
 }
 
-static
-void gpx_noop()
-{
-}
-
 static
 void gpx_route_pr()
 {
index 9d8ad9fcf53b6e7d9685d8b9e89cd42e3e86a2d4..2cb9f1c5dd93f97cd96f72c89e9ff981cecac727 100644 (file)
@@ -293,14 +293,6 @@ case_ignore_strcmp(const char *s1, const char *s2)
 
 }
 
-double
-mkposn(const char *string)
-{
-       double coord;
-       sscanf(string, "%lf", &coord);
-       return coord;
-}
-
 void
 printposn(const double c, int is_lat)
 {
@@ -313,18 +305,6 @@ printposn(const double c, int is_lat)
        printf("%f%c ", fabs(c), d);
 }
 
-void
-fprintdms(FILE *file, const double c, int is_lat)
-{
-       char d;
-       if (is_lat) {
-               if (c < 0) d = 'S'; else d = 'N';
-       } else {
-               if (c < 0) d = 'W'; else d = 'E';
-       }
-       fprintf(file, "%c%f\t", d, fabs(c));
-}
-
 void
 fatal(const char *fmt, ...)
 {